home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / general / procssng / ccs / ccs-11tl.lha / lbl / hips / sources / rle / makefile.src < prev    next >
Encoding:
Makefile  |  1993-08-23  |  474 b   |  36 lines

  1. #
  2. # makefile for user-contributed/lbl/hips/sources/rle
  3. #
  4.  
  5. # Xhips made obsolete by 'getx' ??
  6. PGMS = htorle.out Xhips.out
  7. #PGMS = htorle.out
  8.  
  9. LIBRLE= -lrle
  10.  
  11. .c.o:
  12.     $(COMPILEc) $< -I$(CCS_ROOT)/include
  13.  
  14. install:    $(PGMS)
  15.  
  16. clean:    clean-pgm
  17. clean-all:    clean_all
  18.  
  19. man:
  20.  
  21. doc:
  22.  
  23. pristine:    pristine-pgm
  24.  
  25. htorle.out:    htorle.o
  26.     $(LINKc) htorle htorle.o $(LIBRARIES) $(LIBRLE)
  27.     mv htorle $(DESTDIR)
  28.     @touch $@
  29.  
  30. Xhips.out:
  31.     cp Xhips $(DESTDIR)
  32.     chmod +x $(DESTDIR)/Xhips
  33.     @touch $@
  34.  
  35. FRC:
  36.